<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
.banner {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	position: relative;
	width: 100%;
	height: 510px;
	min-width: 1500px;
}

.banner&gt;.back {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	background: gray;
	overflow: hidden;
}

.banner&gt;.back&gt;img {
	position: absolute;
	filter: blur(5rem);
	width: 100%;
	height: 100%;
	-webkit-user-drag:none;
}

.banner&gt;.front {
    margin-top: 60px;
	position: relative;
	display: flex;
    justify-content: center;
	height: 450px;
	overflow: hidden;
}

.banner&gt;.front&gt;.switch {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	width: 60px;
}

.banner&gt;.front&gt;.switch:hover&gt;div::before {
	color: #ffffff90;
}

.banner&gt;.front:hover&gt;.switch&gt;div::before {
	color: #ffffff90;
}

.banner&gt;.front&gt;.switch&gt;div::before {
	font-size: 48px;
	font-family: 'fangsong';
	display: flex;
	align-items: center;
	justify-content: center;
	color: transparent;
	transition: 0.5s color;
	cursor: pointer;
	font-weight: bold;
}

.banner&gt;.front&gt;.switch&gt;.prev::before {
	content: "&lt;";
}

.banner&gt;.front&gt;.switch&gt;.next::before {
	content: "&gt;";
}


.banner&gt;.front&gt;.switch&gt;div:hover::before {
	color: #ffffff;
}

.banner&gt;.front&gt;.images {
	position: relative;
	height: 450px;
	background: black;
	user-select: none;
}

.banner&gt;.front&gt;.images&gt;.holder {
	height: 100%;
}


.banner&gt;.front&gt;.images&gt;.holder&gt;img {
    height: 100%;
	user-select: none;
    app-region: no-drag;
    -webkit-user-drag: none;
}

.banner&gt;.front&gt;.images&gt;img {
	opacity: 0;
	position: absolute;
    inset: 0;
	user-select: none;
    app-region: no-drag;
    -webkit-user-drag: none;
}

.banner&gt;.front&gt;.images&gt;.selector {
	list-style: none;
	position: absolute;
	display: flex;
	margin: 0;
	left: 0;
	bottom: 16px;
	right: 0;
	justify-content: center;
	padding: 0px;
}

.banner&gt;.front&gt;.images&gt;.selector&gt;li {
    width: 8px;
    height: 8px;
    border-radius: 4px;
    background: #dadadaa0;;
	margin: 0 4px;
	cursor: pointer;
	transition: 0.5s background;
}

.banner&gt;.front&gt;.images&gt;.selector&gt;li:hover {
	background: #eeeeee;
}

.banner&gt;.front&gt;.images&gt;.selector&gt;.current {
	background: #ffffff;
}</pre></body></html>